Skip to content

deps: Bump the microsoft-agents group with 4 updates#64

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/microsoft-agents-e6e93d49a5
Open

deps: Bump the microsoft-agents group with 4 updates#64
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/microsoft-agents-e6e93d49a5

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 9, 2026

Updated Azure.AI.Projects from 1.2.0-beta.5 to 2.0.0-beta.1.

Release notes

Sourced from Azure.AI.Projects's releases.

2.0.0-beta.1

2.0.0-beta.1 (2026-01-08)

Features Added

  • Added support for the Azure AI Translator API 2025-10-01-preview, including translations using LLM models, adaptive custom translation, tone variant translations, and gender-specific language translations.
  • Added TranslationTarget class for configuring translation options.
  • Exposed JsonModelWriteCore for model serialization procedure.

Breaking Changes

  • Added Models property to GetSupportedLanguagesResult to include the list of LLM models available for translations.
  • Changed the name of the model factory AITranslationTextModelFactory to TranslationTextModelFactory matching the new project structure.
  • Changed the name of TargetLanguage property to Language in TranslationText.
  • Changed the name of Confidence property to Score in DetectedLanguage.
  • Removed TextTranslationTranslateOptions and TextTranslationTransliterateOptions.
  • SourceText property in TranslatedTextItem deprecated and marked as obsolete.
  • Dictionary, sentence boundaries and text alignments features have been removed and relevant classes and properties have been marked as deprecated.

1.51.1

1.51.1 (2026-02-04)

Features Added

  • Update the APIs for Microsoft.Extensions.Configuration and Microsoft.Extensions.DependencyInjection to enable Azure.Identity use cases.
  • Updated BCL dependencies to 10.x.

1.51.0

1.51.0 (2026-01-29)

Features Added

  • Added core support for Microsoft.Extensions.Configuration and Microsoft.Extensions.DependencyInjection.
  • Implements support for client certificate rotation in the Azure.Core transport layer to enable dynamic token binding scenarios. The changes allow transport instances to be updated with new client certificate configurations at runtime without requiring full pipeline reconstruction.

Bugs Fixed

  • Fixed NullReferenceException when calling GetHashCode() on default(AzureLocation).

1.18.0

1.18.0 (2026-02-25)

Features Added

  • Added experimental Microsoft.Extensions.Configuration and Microsoft.Extensions.DependencyInjection integration for Azure SDK clients. For details, see the Configuration and Dependency Injection documentation.

  • The WorkloadIdentityCredentialOptions.IsAzureProxyEnabled property, which enables Azure Kubernetes token proxy mode, is only available in beta releases of this package.

  • AzureDeveloperCliCredential now parses JSON error output from azd auth token to extract clean error messages instead of including raw JSON in exceptions. Error messages like {"type":"consoleMessage","data":{"message":"ERROR: fetching token: ..."}} are now displayed as ERROR: fetching token: ....

1.18.0-beta.3

1.18.0-beta.3 (2026-02-20)

Breaking Changes

  • Renamed WorkloadIdentityCredentialOptions.IsAzureKubernetesTokenProxyEnabled to IsAzureProxyEnabled to follow .NET naming conventions for boolean properties.

Bugs Fixed

  • Fixed a NullReferenceException that occurred during X509Chain validation on Linux when using the Identity Bindings feature.

  • Disabled MSAL's internal retry logic for ConfidentialClientApplication and PublicClientApplication to prevent double retries when combined with Azure SDK's retry policy. Only the configured Azure SDK retry policy is applied, avoiding unexpected additional retry attempts.

1.15.0

1.15.0 (2026-02-02)

Features Added

  • Upgraded api-version to 2025-05-01.

1.14.0

1.14.0 (2026-01-16)

Features Added

  • Added new resource type GalleryScript.
  • Added StorageAccountStrategy property to GalleryArtifactPublishingProfileBase class.

1.10.0

1.10.0 (2026-01-19)

Features Added

  • Support identity-based connection.

1.9.0

1.9.0 (2026-01-27)

Features Added

  • Added core support for Microsoft.Extensions.Configuration and Microsoft.Extensions.DependencyInjection.
  • Added JsonModel<T> abstract base class that provides a simplified way to implement IJsonModel<T> for JSON serialization and deserialization.

Bugs Fixed

  • Fixed an issue with ClientRetryPolicy where delays were being calculated using the retry count instead of the attempt count, causing the initial retry to occur without delay and subsequent retries to be performed more quickly than intended.

1.8.0

1.8.0 (2026-01-27)

Features Added

  • Added new methods, CheckConfigurationSettings and CheckConfigurationSettingsAsync, which can be used to check settings from the Azure App Configuration store using HEAD requests, returning only headers without the response body. #​54669

Other Changes

  • Added internal pipeline policy to handle audience error and surface up an improved error message. #​53834

1.6.0

1.6.0 (2026-01-16)

Features Added

  • Upgraded api-verion to 2025-09-01.
  • Make Azure.ResourceManager.Avs AOT-compatible.

1.6.0-beta.2

1.6.0-beta.2 (2026-01-12)

Breaking Changes

  • Default Sampler Changed (#​54942): The default sampling behavior has been changed from
    ApplicationInsightsSampler with 100% sampling (all traces sampled) to
    RateLimitedSampler with 5.0 traces per second. This change significantly
    reduces telemetry volume for high-traffic applications and provides better
    cost optimization out of the box.
    Impact: Applications with more than 5 requests per second will see fewer
    traces exported by default.
    Migration: To maintain the previous behavior (100% sampling), explicitly
    configure the sampler:
    // Option 1: Set SamplingRatio and clear TracesPerSecond
    builder.Services.AddOpenTelemetry()
        .UseAzureMonitorExporter(options =>
        {
            options.SamplingRatio = 1.0f;
            options.TracesPerSecond = null;
        });
    // Option 2: Use environment variables
    // OTEL_TRACES_SAMPLER=microsoft.fixed_percentage
    // OTEL_TRACES_SAMPLER_ARG=1.0

Bugs Fixed

  • Fixed performance counter metrics not using configured resource attributes
    (cloud_RoleName and cloud_RoleInstance), which previously showed
    "unknown_service:appName" instead of the configured values.
    (#​54944)

1.5.1

1.5.1 (2026-01-29)

Features Added

  • Support for MicrosoftTeamsAppIdentifier CommunicationIdentifier

1.5.0

1.5.0 (2026-03-04)

Features Added

  • Added AddKeyVaultSecrets extension methods on IConfigurationBuilder that create a SecretClient from configuration using the Azure.Core configuration extensions (built on System.ClientModel).

Bugs Fixed

  • Handle OperationCanceledException in PollForSecretChangesAsync so the background polling loop exits cleanly when the provider is disposed.

1.5.0-beta.1

1.5.0-beta.1 (2026-01-23)

Features Added

  • Added BicepMetadata class that provides a clean, type-safe way to set Bicep metadata on resources:
    • Description - Adds @​description('...') decorator
    • BatchSize - Adds @​batchSize(n) decorator for loop deployments
    • OnlyIfNotExists - Adds @​onlyIfNotExists() decorator
  • Added BicepMetadata property on ProvisionableResource

Bugs Fixed

  • Fixed PropertyName in Self reference for IBicepValue instances of collection items to include its index (for list) or its key (for dictionary) to avoid colliding with its enclosing collection's property name. (#​54802)

1.4.1

1.4.1 (2026-02-12)

Other Changes

  • Removed show-serialized-names debug configuration to clean up unnecessary serialized name annotations from XML docs.

1.4.1-beta.3

1.4.1-beta.3 (2026-02-17)

Features Added

  • Added ConfidentialLedgerRedirectPolicy to automatically follow HTTP 307/308 redirects while preserving the Authorization header. Previously, the SDK did not follow redirects by default, and even when redirects were enabled, the Authorization header was stripped on cross-domain redirects between ACL nodes, causing write operations to fail when routed to non-primary nodes.

1.4.0

1.4.0 (2026-01-30)

Features Added

Other Changes

  • Upgraded Azure.Core from 1.47.1 to 1.50.0

1.4.0-beta.2

1.4.0-beta.2 (2026-03-02)

Features Added

  • StaticSiteBasicAuthProperty.Name now defaults to "default" and is read-only, matching the only accepted Bicep value.
  • SiteNetworkConfig.Name now defaults to "virtualNetwork" and is read-only, matching the only accepted Bicep value.

Breaking Changes

  • StaticSiteBasicAuthProperty.Name is now read-only (setter removed). The property only accepts "default".
  • SiteNetworkConfig.Name is now read-only (setter removed). The property only accepts "virtualNetwork".
  • Removed generated enum StaticSiteBasicAuthName. A backward-compatible version is preserved but hidden from IntelliSense.

Bugs Fixed

  • Fixed SiteNetworkConfig.Name not having a default value (#​54629).

1.4.0-beta.1

1.4.0-beta.1 (2026-02-27)

Features Added

  • Regenerated from the latest Azure.ResourceManager.AppService package.

1.3.1

1.3.1 (2026-02-28)

Bugs Fixed

  • Fixed swapped CreatedOn/LastUpdatedOn property mappings in EmailSuppressionListData. CreatedOn was incorrectly bound to lastUpdatedTimeStamp and LastUpdatedOn to createdTimeStamp.

1.3.0

1.3.0 (2026-01-26)

Features Added

1.2.0

1.2.0 (2026-02-27)

Features Added

1.2.0-beta.9

1.2.0-beta.9 (2026-02-23)

Features Added

  • Added support for CodeInterpreterToolCallContent from Microsoft.Extensions.AI abstractions when executing HostedCodeInterpreterTool tool.

Bugs Fixed

  • Fixed a performance issue in PersistentAgentsChatClient.GetStreamingResponseAsync issue.

Commits viewable in compare view.

Updated Microsoft.Agents.AI.AzureAI from 1.0.0-rc1 to 1.0.0-rc3.

Release notes

Sourced from Microsoft.Agents.AI.AzureAI's releases.

1.0.0-rc3

What's Changed

Full Changelog: microsoft/agent-framework@dotnet-1.0.0-rc2...dotnet-1.0.0-rc3

1.0.0-rc2

What's Changed

Full Changelog: microsoft/agent-framework@dotnet-1.0.0-rc1...dotnet-1.0.0-rc2

Commits viewable in compare view.

Updated Microsoft.Agents.AI.OpenAI from 1.0.0-rc1 to 1.0.0-rc3.

Release notes

Sourced from Microsoft.Agents.AI.OpenAI's releases.

1.0.0-rc3

What's Changed

Full Changelog: microsoft/agent-framework@dotnet-1.0.0-rc2...dotnet-1.0.0-rc3

1.0.0-rc2

What's Changed

Full Changelog: microsoft/agent-framework@dotnet-1.0.0-rc1...dotnet-1.0.0-rc2

Commits viewable in compare view.

Updated Microsoft.Agents.AI.Workflows from 1.0.0-rc1 to 1.0.0-rc3.

Release notes

Sourced from Microsoft.Agents.AI.Workflows's releases.

1.0.0-rc3

What's Changed

Full Changelog: microsoft/agent-framework@dotnet-1.0.0-rc2...dotnet-1.0.0-rc3

1.0.0-rc2

What's Changed

Full Changelog: microsoft/agent-framework@dotnet-1.0.0-rc1...dotnet-1.0.0-rc2

Commits viewable in compare view.

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps Azure.AI.Projects from 1.2.0-beta.5 to 2.0.0-beta.1
Bumps Microsoft.Agents.AI.AzureAI from 1.0.0-rc1 to 1.0.0-rc3
Bumps Microsoft.Agents.AI.OpenAI from 1.0.0-rc1 to 1.0.0-rc3
Bumps Microsoft.Agents.AI.Workflows from 1.0.0-rc1 to 1.0.0-rc3

---
updated-dependencies:
- dependency-name: Azure.AI.Projects
  dependency-version: 2.0.0-beta.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: microsoft-agents
- dependency-name: Microsoft.Agents.AI.AzureAI
  dependency-version: 1.0.0-rc3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: microsoft-agents
- dependency-name: Microsoft.Agents.AI.OpenAI
  dependency-version: 1.0.0-rc3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: microsoft-agents
- dependency-name: Microsoft.Agents.AI.Workflows
  dependency-version: 1.0.0-rc3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: microsoft-agents
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Mar 9, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants